home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / mask12.arc / GETKEY.INC next >
Encoding:
Text File  |  1988-01-07  |  235 b   |  10 lines

  1. '*** GETKEY.INC: Returns users input key and updates the status line
  2. SUB GETCHAR(CH$) STATIC
  3. shared skcolor%, Statrow%, Statcol%
  4.     DO
  5.         CH$ = INKEY$
  6.         CALL keystatline(skcolor%,Statrow%,Statcol%)
  7.     LOOP UNTIL CH$ <> ""
  8. END SUB
  9.  
  10.